-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: replace flag expose_internals to expose-internals #32542
test: replace flag expose_internals to expose-internals #32542
Conversation
efebb61
to
ecb7abf
Compare
It sort of is: https://nodejs.org/api/cli.html#cli_options |
I'm blind 🤦♂️ |
CI: https://ci.nodejs.org/job/node-test-pull-request/30171/ (:yellow_heart:) |
No strong feelings on this PR, but note that using a mixture of |
@sam-github ... if we're concerned about that, then there should be a separate dedicated test that ensures that both |
There is EDIT: Specifically these lines: node/test/parallel/test-cli-node-options.js Lines 26 to 27 in cd1db2d
|
I think I can add a test for both flags. |
PR-URL: #32542 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]>
Landed in 7534477 |
Add test cases that confirm that `--expose-internals` and `--expose_internals` are disallowed in the NODE_OPTIONS environment variable. PR-URL: #32554 Refs: #32542 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #32542 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]>
Add test cases that confirm that `--expose-internals` and `--expose_internals` are disallowed in the NODE_OPTIONS environment variable. PR-URL: #32554 Refs: #32542 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #32542 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]>
Add test cases that confirm that `--expose-internals` and `--expose_internals` are disallowed in the NODE_OPTIONS environment variable. PR-URL: #32554 Refs: #32542 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]>
Add test cases that confirm that `--expose-internals` and `--expose_internals` are disallowed in the NODE_OPTIONS environment variable. PR-URL: #32554 Refs: #32542 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: nodejs#32542 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]>
PR-URL: #32542 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]>
They are the same, but
--expose-internals
seems to be the standard, actually, the written onsrc/node_options.h
file, and by the way,--expose_internals
flag is not documented anywhere.Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes